home *** CD-ROM | disk | FTP | other *** search
/ Chip 2004 May / CMCD0504.ISO / Software / Freeware / Programare / dspack / DSPACK231.exe / {app} / Demos / D6-D7 / PlayWin / SelectURL.pas < prev   
Encoding:
Pascal/Delphi Source File  |  2002-04-07  |  412 b   |  28 lines

  1. unit SelectURL;
  2.  
  3. interface
  4.  
  5. uses
  6.   Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms,
  7.   Dialogs, StdCtrls;
  8.  
  9. type
  10.   TFormSelectURL = class(TForm)
  11.     btOK: TButton;
  12.     btCancel: TButton;
  13.     URL: TEdit;
  14.   private
  15.     { DΘclarations privΘes }
  16.   public
  17.     { DΘclarations publiques }
  18.   end;
  19.  
  20. var
  21.   FormSelectURL: TFormSelectURL;
  22.  
  23. implementation
  24.  
  25. {$R *.dfm}
  26.  
  27. end.
  28.